home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
273_01
/
curnl.cc
< prev
next >
Wrap
Text File
|
1987-09-23
|
226b
|
10 lines
cur_nl()
/* Move the cursor to the beginning of the next row */
{
int cur_row, cur_col;
get_cur(&cur_row,&cur_col);
cur_row++;
if(cur_row>24) cur_row=0;
locate(cur_row,0);
}